home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000201_fdc@watsun.cc.columbia.edu_Wed Jun 6 10:35:27 EDT 2001.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  68 lines

  1. Article: 12510 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!watsun.cc.columbia.edu!fdc
  3. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc,comp.os.vms
  5. Subject: Re: OpenVMS/Windows scripts
  6. Date: 6 Jun 2001 14:35:35 GMT
  7. Organization: Columbia University
  8. Lines: 51
  9. Message-ID: <9flf3n$2m2$1@newsmaster.cc.columbia.edu>
  10. References: <OYVpP#k6AHA.259@cpmsnbbsa09> <9f86o1$f33$1@newsmaster.cc.columbia.edu> <OBMb3rj7AHA.88@cpmsnbbsa09>
  11. NNTP-Posting-Host: watsun.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 991838135 2754 128.59.39.2 (6 Jun 2001 14:35:35 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 6 Jun 2001 14:35:35 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12510 comp.os.vms:287965
  16.  
  17. In article <OBMb3rj7AHA.88@cpmsnbbsa09>,
  18. cstranslations <cstranslations@email.msn.com> wrote:
  19. : > : ... just received (well yesterday) and installed
  20. : > : Kermit95 on a PC running Windows98. I haven't purchased the book yet...
  21. : > :
  22. : > It's in your Kermit 95 distribution as a PDF file.
  23. : I'll have to go back and take another look. What I was looking at seemed to
  24. : be an abbreviated version of the book (and I seem to remember seeing
  25. : something some where indicating the book was rather "large" 700+ pages).
  26. That's "Using C-Kermit" and it is indeed in Kermit 95 directory.  If you
  27. give the "manual" command at the K-95> prompt, or click on Help->Manual in
  28. the Dialer, you get the Kermit 95 manual, which, very near the top, has an
  29. Index to Reference Material, where the first item is a link to the "Using
  30. C-Kermit" PDF file.
  31.  
  32. : > Yes, but it's always harder to make a connection TO Windows than FROM
  33. : > Windows, because Windows, unlike VMS or UNIX, is not designed to accept
  34. : > logins from outside.  But it can be done.
  35. : >
  36. : > The first question is: What kind of connection are you making from VMS to
  37. : > Windows?  Direct serial, dialed, Telnet, ...?
  38. : Telnet from the an alpha 4100 running OpenVMS 7.1-1H1 to a PC running
  39. : Windows (I believe NT if/when I can get things into production - for
  40. : testing/development from the alpha to my PC running Windows98).
  41. Of course this would be more straightforward in the other direction (make
  42. the connection from Windows to VMS, which is already set up to allow Telnet
  43. users to come in, log in, and have a regular session).  I'm sure you know
  44. that Windows does not include a Telnet server (unless you have installed a
  45. third-party one).  Therefore you have two choices:
  46.  
  47.  1. Tell Kermit 95 to wait for an incoming connection on a specific socket:
  48.  
  49.       set host * 3000
  50.  
  51.     and then tell C-Kermit on VMS to "telnet xxx 3000" (where xxx is the
  52.     hostname of the Windows PC); or:
  53.  
  54.  2. Use Kermit 95 host mode:
  55.  
  56.       http://www.columbia.edu/kermit/k95host.html
  57.  
  58. The next release of K95 will offer a third choice, in which K95 itself *is*
  59. a Telnet server and shell combined, so incoming connections get the K-95>
  60. prompt and can give all the file-management and transfer commands to it,
  61. *almost* just like at the PC console.
  62.  
  63. - Frank
  64.